|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface IDataObject
Represents a dynamic piece of data at runtime.
| Method Summary | |
|---|---|
IDataObject |
getField(java.lang.String fieldName)
Returns the value of the specified field. |
IDataType |
getType()
Returns the type of this data object. |
boolean |
isEqualTo(java.lang.Object object)
Returns true if the specified value is equal to this object's value. |
boolean |
isGreaterThan(java.lang.Object object)
Returns true if the specified value is greater than this object's value. |
boolean |
isGreaterThanOrEqualTo(java.lang.Object object)
Returns true if the specified value is greater than or equal to this object's value. |
boolean |
isLessThan(java.lang.Object object)
Returns true if the specified value is less than this object's value. |
boolean |
isLessThanOrEqualTo(java.lang.Object object)
Returns true if the specified value is less than or equal to this object's value. |
boolean |
isReadOnly()
Returns true if this data object is immutable. |
boolean |
setField(java.lang.String fieldName,
IDataObject variable)
Sets the value of the specified field. |
java.lang.String |
toString()
Returns a string representation of this data object. |
| Method Detail |
|---|
IDataType getType()
boolean isReadOnly()
IDataObject getField(java.lang.String fieldName)
fieldName - The name of the field to return the value of.
null if this
object does not have a field with the specified name.
boolean setField(java.lang.String fieldName,
IDataObject variable)
fieldName - The name of the field to set the value of.variable - The value to set the field to.
boolean isEqualTo(java.lang.Object object)
This method will attempt to coerce the supplied value into a type compatible with the type of this data object.
object - The value to test against.
boolean isLessThan(java.lang.Object object)
This method will attempt to coerce the supplied value into a type compatible with the type of this data object.
object - The value to test against.
boolean isLessThanOrEqualTo(java.lang.Object object)
This method will attempt to coerce the supplied value into a type compatible with the type of this data object.
object - The value to test against.
boolean isGreaterThan(java.lang.Object object)
This method will attempt to coerce the supplied value into a type compatible with the type of this data object.
object - The value to test against.
boolean isGreaterThanOrEqualTo(java.lang.Object object)
This method will attempt to coerce the supplied value into a type compatible with the type of this data object.
object - The value to test against.
java.lang.String toString()
toString in class java.lang.Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||